(XTmouse_position): Undo roland's change.
authorRichard M. Stallman <rms@gnu.org>
Thu, 11 Nov 1993 02:33:43 +0000 (02:33 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 11 Nov 1993 02:33:43 +0000 (02:33 +0000)
Fix bug in bfox change.

src/xterm.c

index a5e47d2dac82c247c43c739ba29dc68a2f364660..bc82f04623b1a0ab65fa318b0d8131521a95fda8 100644 (file)
@@ -1776,7 +1776,7 @@ static void x_scroll_bar_report_motion ();
 
 static void
 XTmouse_position (f, bar_window, part, x, y, time)
-     FRAME_PTR f;
+     FRAME_PTR *f;
      Lisp_Object *bar_window;
      enum scroll_bar_part *part;
      Lisp_Object *x, *y;
@@ -1785,7 +1785,7 @@ XTmouse_position (f, bar_window, part, x, y, time)
   FRAME_PTR f1;
 
   /* If this isn't an X-window frame, quit now. */
-  if (!FRAME_X_P (f))
+  if (!FRAME_X_P (*f))
     return;
 
   BLOCK_INPUT;